home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / RCS / Gate_Next.c,v < prev    next >
Text File  |  1992-06-05  |  5KB  |  227 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    jhh:1.1; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     92.06.04.22.03.22;  author jhh;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * Gate_Next.c --
  27.  *
  28.  *    Source code for the Gate_Next library procedure.
  29.  *
  30.  * Copyright 1992 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  */
  39.  
  40. #ifndef lint
  41. static char rcsid[] = "$Header: /user6/voelker/src/hosttest/RCS/Gate_Next.c,v 1.1 92/03/26 19:44:53 voelker Exp Locker: voelker $ SPRITE (Berkeley)";
  42. #endif not lint
  43.  
  44. #include <stdio.h>
  45. #include <sprite.h>
  46. #include <ctype.h>
  47. #include <gate.h>
  48. #include <gateInt.h>
  49. #include <stdlib.h>
  50. #include <string.h>
  51. #include <arpa/inet.h>
  52. #include <netinet/in.h>
  53.  
  54. static Net_EtherAddress emptyEtherAddr;
  55. static Net_FDDIAddress  emptyFDDIAddr;
  56.  
  57.  
  58. /*
  59.  *-----------------------------------------------------------------------
  60.  *
  61.  * Gate_Next --
  62.  *
  63.  *    Read the next line from the gateway file and break it into the
  64.  *    appropriate fields of the structure.
  65.  *
  66.  * Results:
  67.  *    The return value is a pointer to a Gate_Entry structure
  68.  *    containing the information from the next line of the file.
  69.  *    This is a statically-allocated structure, which will only
  70.  *    retain its value up to the next call to this procedure.
  71.  *    If the end of the file is reached, or an error occurs, NULL
  72.  *    is returned.
  73.  *
  74.  * Side Effects:
  75.  *    The position in the file advances.
  76.  *
  77.  *-----------------------------------------------------------------------
  78.  */
  79. Gate_Entry *
  80. Gate_Next()
  81. {
  82. #define BUFFER_SIZE 512
  83. #define MAX_NAMES 20
  84.     static Gate_Entry    entry;
  85.     static char          inputBuf[BUFFER_SIZE];
  86.     static char *    fields[MAX_NAMES+2];
  87.     struct in_addr      inetAddr;
  88.     Net_AddressType     currentType;
  89.     register char *    p;
  90.     int            numFields;
  91.     int              c;
  92.     register int        result;
  93.  
  94.     if (gateFile == (FILE *) NULL) {
  95.     return ((Gate_Entry *) NULL);
  96.     }
  97.     /*
  98.      * Loop until a valid entry has been found, or the end of the file
  99.      * has been reached.
  100.      */
  101.     while (!feof(gateFile)) {
  102.     /*
  103.      * First skip any comment lines or blank lines.
  104.      */
  105.  
  106.     while (1) {
  107.         c = getc(gateFile);
  108.         if (c != '#' && c != '\n') {
  109.         break;
  110.         }
  111.         while ((c != '\n') && (c != EOF)) {
  112.         c = getc(gateFile);
  113.         } 
  114.     }
  115.     if (c == EOF) {
  116.         break; 
  117.     }
  118.     ungetc(c, gateFile);
  119.  
  120.     /*
  121.      * Get the gateway line.
  122.      */
  123.  
  124.     if (fgets(inputBuf, BUFFER_SIZE, gateFile) == NULL) {
  125.         continue; 
  126.     }
  127.  
  128.     /*
  129.      * If the line didn't all fit in the buffer, throw away the
  130.      * remainder.
  131.      */
  132.  
  133.     for (p = inputBuf; *p !=0; p++) {
  134.         /* Null loop body */
  135.     }
  136.     if (p[-1] != '\n') {
  137.         do {
  138.         c = getc(gateFile);
  139.         } while ((c != '\n') && (c != EOF));
  140.     }
  141.     if (c == EOF) {
  142.         break; 
  143.     }
  144.     /*
  145.      * Break the line up into fields.
  146.      */
  147.     for (p = inputBuf, numFields = 0; *p != 0; numFields++) {
  148.         fields[numFields] = p;
  149.         while (!isspace(*p)) {
  150.         p++;
  151.         }
  152.         *p = 0;
  153.         p++;
  154.         while (isspace(*p)) {
  155.         p++;
  156.         }
  157.         if (numFields == MAX_NAMES+1) {
  158.         break;
  159.         }
  160.     }
  161.     if (numFields < 4) {
  162.         continue;
  163.     }
  164.  
  165.     /*
  166.      * Fill in gateway description.
  167.      */
  168.  
  169.     entry.desc = fields[0];
  170.  
  171.     /*
  172.      * Determine the network type and parse the network address.
  173.      */
  174.  
  175.     if (!strcmp(fields[1], "ether")) {
  176.         if (strcmp(fields[1], "ether") == 0) {
  177.         currentType = NET_ADDRESS_ETHER;
  178.         } else if (strcmp(fields[1], "ultra") == 0) {
  179.         currentType = NET_ADDRESS_ULTRA;
  180.         } else if (strcmp(fields[1], "fddi") == 0) {
  181.         currentType = NET_ADDRESS_FDDI;
  182.         } else {
  183.         continue;
  184.         }
  185.     }
  186.     entry.netAddr.type = currentType;
  187.     result = Net_StringToAddrNew(fields[2], currentType, &entry.netAddr);
  188.     entry.netAddr.type = currentType;
  189.     if (result != SUCCESS) {
  190.         continue;
  191.     }
  192.     /*
  193.      * If the address is invalid, then the entry is invalid.
  194.      */
  195.     switch (currentType) {
  196.     case NET_ADDRESS_ETHER:
  197.         if (!Net_EtherAddrCmp(emptyEtherAddr, 
  198.                   entry.netAddr.address.ether)) {
  199.         continue;
  200.         }
  201.     case NET_ADDRESS_FDDI:
  202.         if (!Net_FDDIAddrCmp(emptyFDDIAddr,
  203.                  entry.netAddr.address.fddi)) {
  204.         continue;
  205.         }
  206.     case NET_ADDRESS_ULTRA:
  207.     default:
  208.         break;
  209.     }
  210.     /*
  211.      * Fill in the internet address.
  212.      */
  213.     if (fields[3][0] == '*') {
  214.         /*
  215.          * Empty internet address.
  216.          */
  217.         entry.inetAddr = 0;
  218.     } else {
  219.         entry.inetAddr = Net_StringToInetAddr(fields[3]);
  220.     }
  221.     return &entry;
  222.     }
  223.     return (Gate_Entry *)NULL;
  224. }
  225.  
  226. @
  227.